home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 2010 April
/
PCWorld0410.iso
/
redakcyjne
/
programy
/
Weather Watcher Live 6.1.23
/
WWL6123.exe
/
{app}
/
Skins
/
Interface
/
Splendid2
/
Includes
/
BlockF5.js
next >
Wrap
Text File
|
2007-11-27
|
729b
|
35 lines
var asciiF5 = 116;
var bRet = true;
if(document.all)
{ document.onkeydown = onKeyPress;
}
else if (document.layers || document.getElementById)
{ document.onkeypress = onKeyPress;
}
function onKeyPress(evt)
{ window.status = '';
var oEvent = (window.event) ? window.event : evt;
var nKeyCode = oEvent.keyCode ? oEvent.keyCode : oEvent.which ? oEvent.which : void 0;
var bIsFunctionKey = false;
if (oEvent.charCode == null || oEvent.charCode == 0)
{ bIsFunctionKey = (nKeyCode == asciiF5)
}
if(bIsFunctionKey)
{ bRet = false;
try
{ oEvent.returnValue = false;
oEvent.cancelBubble = true;
oEvent.keyCode = 0;
window.status = msg;
}
catch(ex){}
}
return bRet;
}